f90b96d8f20ef07ab27b9d602e13b1cf1bcc0b31,src/main/java/org/orekit/attitudes/TabulatedLofOffset.java,TabulatedLofOffset,getAttitude,#PVCoordinatesProvider#AbsoluteDate#Frame#,95

Before Change


        throws OrekitException {

        // get attitudes sample on which interpolation will be performed
        final List<TimeStampedAngularCoordinates> sample = table.getNeighbors(date);

        // interpolate
        final TimeStampedAngularCoordinates interpolated =

After Change


        throws OrekitException {

        // get attitudes sample on which interpolation will be performed
        final List<TimeStampedAngularCoordinates> sample = table.getNeighbors(date).collect(Collectors.toList());

        // interpolate
        final TimeStampedAngularCoordinates interpolated =